home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
coreaids.arc
/
CLEAR.ASM
< prev
next >
Wrap
Assembly Source File
|
1987-06-25
|
524b
|
31 lines
; DESC: Clears the screen V1.00
; SAMPLE: Callm CLEAR,,
; ##################################################################
Extrn PUSHALL:Near
Extrn POPALL:Near
CLEARC Segment
Assume CS:CLEARC
Public CLEAR
;notice.
DB 'CLEAR - V1.00, Copyright 1987, CoreTechs ',0DH,0AH
CLEAR Proc Near ;clear the screen.
Call PUSHALL
Mov AX,0600H
Mov BH,7
Mov CX,0
Mov DH,25
Mov DL,80
Int 10H
Call POPALL
Ret
CLEAR Endp
CLEARC Ends
End